home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 1.0 KB | 31 lines | [TEXT/GEOL] |
- Item 7263179 16-Nov-89 11:04
-
- From: KNEPPER Knepper, Christopher
-
- To: V0198 Schlage, Ed Mahoney,Proj Leader,VAR
-
- cc: MACAPP.TECH$ MacApp Technical
-
- Sub: Re: Son of Segment>32k
-
- Ed,
-
- >However, my chief problem lies in my having to use a database package
- >available to me only in object code and it insists in being in the main
- >segment.
-
- I recommend MPW's Lib tool. It will allow you to take any number of object
- files as input and remap the segmentation. So...you could pass in the database
- package as input to Lib and then use Lib's "-sn" option to remap the routines
- that insist on being in the main segment to another segment, say "DBRes".
-
- Lib # combine object files into a library file
- Lib [option…] objectFile… ≥ progress
- -sn oldSeg=newSeg # change segment name oldSeg to newSeg
-
- Link will then allow you to pass that lib'd file as input. Then, if necessary,
- add that segment to your "seg!" resource.
-
- -Chris
-
-